-
Notifications
You must be signed in to change notification settings - Fork 808
[Benchmarks] Fix SubmitGraph CPU count scenarios grouping #20239
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: sycl
Are you sure you want to change the base?
Conversation
3b64724
to
f49e0dc
Compare
f49e0dc
to
cc9c41e
Compare
Fixes SubmitGraph CPU count scenarios being drawed in the same charts as SubmitGraph time measurement scenarios making them hard to read.
Simplify SubmitGraph and SubmitKernel benchmarks metadata creation.
Imports sorted with isort
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Fixes SubmitGraph CPU count scenarios being incorrectly grouped with time measurement scenarios, improving chart readability. Also includes refactoring of the compute.py
module structure.
- Separated CPU count scenarios into their own groups to prevent mixing with time measurements
- Refactored benchmark metadata creation to use
copy.deepcopy()
for cleaner code - Reorganized imports for better structure
Co-authored-by: Copilot <[email protected]>
@intel/llvm-gatekeepers please consider merging |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@intel/llvm-gatekeepers , this change is OK, reviewed and CI passes, please merge
Fixes SubmitGraph CPU count scenarios being drawn in the same charts as
SubmitGraph time measurement scenarios making them hard to read.
Also, refactor a bit the
compute.py
module.